home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / dfue / elcheapofax / faxcmd / libfax / rcs / gen.h,v < prev    next >
Text File  |  1995-03-09  |  2KB  |  145 lines

  1. head    1.3;
  2. access;
  3. symbols
  4.     OCT93:1.3;
  5. locks;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.3
  10. date    93.09.18.20.16.23;    author Rhialto;    state Exp;
  11. branches;
  12. next    1.2;
  13.  
  14. 1.2
  15. date    93.06.11.16.15.25;    author Rhialto;    state Exp;
  16. branches;
  17. next    1.1;
  18.  
  19. 1.1
  20. date    93.06.11.15.19.27;    author Rhialto;    state Exp;
  21. branches;
  22. next    ;
  23.  
  24.  
  25. desc
  26. @Prototypes for gen.c
  27. @
  28.  
  29.  
  30. 1.3
  31. log
  32. @Unconditional prototypes.
  33. @
  34. text
  35. @/* $Id: gen.h,v 1.2 1993/06/11 16:15:25 Rhialto Exp $
  36.  * $Log: gen.h,v $
  37.  * Revision 1.2  1993/06/11  16:15:25  Rhialto
  38.  * First real RCS checkin
  39.  *
  40.  */
  41. /*
  42.   gen.h
  43.  
  44.   (c) Copyright 1991 by David M. Siegel.
  45.       All rights reserved.
  46.  
  47.   %W% %G% %U%
  48. */
  49.  
  50. #ifndef in_libfax_gen_h
  51. #define in_libfax_gen_h 1
  52.  
  53. /*
  54.   Prototypes:
  55. */
  56.  
  57. int faxmodem_open(FaxModem *f, char *filename);
  58. int faxmodem_close(FaxModem *f);
  59. int faxmodem_sync(FaxModem *f, int total_tries);
  60. int faxmodem_hangup(FaxModem *f);
  61. int faxmodem_bit_reverse(FaxModem *f, int code);
  62. int faxmodem_byte_align(FaxModem *f, int code);
  63. int faxmodem_set_capabilities(FaxModem *f, int vr, int br, int wd, int ln,
  64.      int df, int ec, int bf, int st);
  65. int faxmodem_want_poll(FaxModem *f);
  66.  
  67. #endif
  68. @
  69.  
  70.  
  71. 1.2
  72. log
  73. @First real RCS checkin
  74. @
  75. text
  76. @d1 5
  77. a5 2
  78. /* $Id$
  79.  * $Log$
  80. d23 9
  81. a31 53
  82. int faxmodem_open(
  83. #ifdef _PROTO
  84.      FaxModem *f,
  85.      char *filename
  86. #endif
  87. );
  88.  
  89. int faxmodem_close(
  90. #ifdef _PROTO
  91.      FaxModem *f
  92. #endif
  93. );
  94.  
  95. int faxmodem_sync(
  96. #ifdef _PROTO
  97.      FaxModem *f,
  98.      int total_tries
  99. #endif
  100. );
  101.  
  102. int faxmodem_hangup(
  103. #ifdef _PROTO
  104.      FaxModem *f
  105. #endif
  106. );
  107.  
  108. int faxmodem_bit_reverse(
  109. #ifdef _PROTO
  110.      FaxModem *f,
  111.      int code
  112. #endif
  113. );
  114.  
  115. int faxmodem_byte_align(
  116. #ifdef _PROTO
  117.      FaxModem *f,
  118.      int code
  119. #endif
  120. );
  121.  
  122. int faxmodem_set_capabilities(
  123. #ifdef _PROTO
  124.      FaxModem *f,
  125.      int vr,
  126.      int br,
  127.      int wd,
  128.      int ln,
  129.      int df,
  130.      int ec,
  131.      int bf,
  132.      int st
  133. #endif
  134. );
  135. @
  136.  
  137.  
  138. 1.1
  139. log
  140. @Initial revision
  141. @
  142. text
  143. @d1 3
  144. @
  145.